home *** CD-ROM | disk | FTP | other *** search
/ Hackers Underworld 2: Forbidden Knowledge / Hackers Underworld 2: Forbidden Knowledge.iso / HACKING / PROTOC.TXT < prev    next >
Text File  |  1994-07-17  |  13KB  |  287 lines

  1.  
  2. PROTOCOL NOTES: CIS A PROTOCOL
  3.  
  4. by Bob Richardson, Carl Raff, and Scott Lowe
  5.  
  6. note: this material was not prepared for or by CIS and they have no responsibility for the accuracy or completeness of the contents.  We gratefully acknowlege their cooperation and the super job they are doing, and simply wish to help document the file transfer protocol.
  7.  
  8.  
  9. INTRODUCTION
  10.     The information presented here is intended to provide  an outline of the written specifications for the CIS A Protocol.  It is designed to be used by programmers who may need to debug or write programs to interface with Compuserve Information Services (CIS) terminal programs.
  11.  
  12.     The PBM 1000 supports a communication subsystem based on the CIS protocol.  One reason is that the CIS protocol is a step in the direction of software standardization   and higher compatibility among different computer systems.  The CIS protocol supports flexible file transfer and is practical for in-house use on a direct-connect medium speed network.  PBM tests show that the protocol runs effectively at 19.2 KB and can transfer data at a rate of up to 50 KB.
  13.  
  14.     In transferring files from one system to another, one CP/M based system (with a copy of any of the CIS executives that supports the A protocol) acts as a terminal.  The  other system, referred to as the "host," treats the "terminal" system both as a console and as the source or target of the file transfer protocol. 
  15.  
  16.     The following is a brief description of the CIS A  Protocol used by CIS.  Also included is a list of Executives compatible with it, and two new files which allow anyone with a CP/M remote system to support this protocol between CP/M systems.
  17.  
  18. Note: CP/M is a registered trademark of Digital Research.
  19.  
  20.  
  21. The Executives
  22.  
  23.  
  24. 1.MNEXEC  [Old  Executive]
  25.    An older version of the Executive, MNEXEC supports
  26.    ASCII transfer only.  This exeecutive is primarily
  27.    useful for those who wish to buy programs from
  28.    Softex,dd as its ESC I response is the only one that
  29.    the Softex system currently recognizes as a file-xfer
  30.    executive (see ESC I response). This program does not
  31.    really support the A protocol, but rather a subset.
  32.  
  33. 2.CSEXEC  [The Compuserve Executive]
  34.    CSEXEC was the first "vanilla" version with binary
  35.    support.  It is a good executive to start with for
  36.    those wishing to heavily modify the source because it
  37.    suffers less from "rampant equate-itis" than BUFEXEC
  38.    (i.e, it accomplishes tasks in a more general fashion
  39.    without presenting too many options to the user).  The
  40.    current version seems to be modified for the Apple
  41.    computer.
  42.  
  43. 3.BUFEXEC [Buffered CSEXEC]
  44.    BUFEXEC adds memory buffered hard copy to CSEXEC, as
  45.    well as many customization equates.  The Osborne
  46.    version is called "BUFEXO.ASM," and is identica to
  47.    BUFEXEC except for modifications for the Osborne I.
  48.  
  49. 4.IOBEXEC [IO/Byte Executive]
  50.    This executive is identical to BUFEXEC, except that it
  51.    uses IOBYTE dispatch to access the serial  port.  If
  52.    your system is interrupt driven, you must use IOBEXEC
  53.    or modify one of the other executives. In addition,
  54.    IOBEXEC allows use of cursor positioning.
  55.  
  56.  
  57. PROTOCOLS
  58.  
  59.     Characteristics of the physical protocol: asynchronous; 8 bits to the byte; 1 stop bit; no parity.
  60.     The protocol mode is turned "on" by an SI instruction (shift in) from host and terminal functions in protocol mode until an SO (shift out) instruction is received.
  61.  
  62.     The ESC "I" Response:  Each terminal responds to an
  63.     ESC "I" with an ID string (see diagrams below).
  64.  
  65.     The ESC "A" Sequence:  This initiates a file transfer.
  66.     The ESC "L" Sequence:  This starts a load sequence.
  67.  
  68.  
  69.              Notes: 
  70.  
  71.     The  "." (period) is used to ACK a message (acknowledge and accept).
  72.  
  73.     The  "/" (slash) is used to NAK a message (negative  acknowledge; request retransmission).
  74.  
  75.     CTRL U is used to abort transmission.
  76.  
  77.         Note: a list of fields enclosed in [ ] marks
  78.         indicate that 1 of the list will be transmitted,
  79.         depending on the conditions at the time.
  80.  
  81.  
  82. ESC "I" Sequence
  83.  
  84.  
  85.              Host                               Terminal
  86.                        "SI" (Protocol on)            
  87.              ------------------------------------------->                          ESC I (Who are you?)
  88.              ------------------------------------------->
  89.                      ID String (see below)
  90.             <-------------------------------------------
  91.                        "SO"  (Protocol  off)
  92.             [------------------------------------------->]                     error; feature lock; end of function
  93.                        Continue in Protocol
  94.             [------------------------------------------->]
  95.  
  96.  
  97.     Action:  The terminal sends its ID string to the host. The host checks the features list, etc.
  98.  
  99.     ID  String: A full sample of the ESC I response for the IOBEXEC protocol (assigned by CIS) is as follows:
  100.  
  101.           <#> <CPM> <MYSYSTEM>, CC, HC, PA, PL, <CR>
  102.  
  103.     The first character is the protocol ID, followed by the OS name and the computer name (optional). The string of four pairs of characters are a series of features to be assigned if the system supports them:
  104.  
  105.  
  106.    o    CC, HC, PA, and PL <CR>
  107.         CC = full cursor control
  108.         HC = hard copy
  109.         PA = "A" protocol
  110.         PL = "L" protocol
  111.  
  112.         See the comments in any version of the executive
  113.         for a  more detailed discussion of these fields
  114.         MNEXEC is an older version of the executive, and
  115.         so the ID string is slightly different in format
  116.         than the one for the CIS Executive. A sample
  117.         response follows:
  118.  
  119.           <01>,<BF>,<SYSTEM2>,<&CPM>,<D> <CR>
  120.  
  121.         The first character is the page address of the
  122.         lowest available page of memory in the terminal,
  123.         followed by the page address of the highest
  124.         available page in memory, the computer ID, OS name,
  125.         and "D" for disk drives.
  126.  
  127.  
  128. ESC "L" Sequence
  129.  
  130.  
  131.      Host                                        Terminal
  132.                             SI
  133.      --------------------------------------------------->
  134.                             ESC L
  135.      --------------------------------------------------->
  136.      <count-1 byte> <low addr> <hi addr> <data> <CHKSUM>
  137.     ---------------------------------------------------->
  138.                   "." = ACK (Received; OK)
  139.   [ <-------------------------------------------------- ]
  140.           "/" = NAK (Error; request retransmission)
  141.   [ <-------------------------------------------------- ]
  142.                          ESC L
  143.      --------------------------------------------------->
  144.             Record                    }more to load
  145.      --------------------------------------------------->
  146.                   "." = ACK (Received; OK)
  147.  [ <--------------------------------------------------- ]
  148.              "/" = NAK (Error; request retransmission)
  149.  [ <-------------------------------------------------- ] 
  150.                         SO (Done)
  151.  [  -------------------------------------------------> ]
  152.  
  153.  
  154.     Action: The terminal loads <data> into memory starting at address <low> <hi> for <count> bytes.
  155.  
  156.  
  157.  
  158.             ESC "A" Sequence: File Transfer
  159.          Host                               Terminal
  160.                     SI (Protocol on)
  161.          ------------------------------------------->
  162.                  ESC A (Start file transfer)
  163.          ------------------------------------------->
  164.            <1-byte SOH> <1-byte rec #> <U/D> <A/B>
  165.            <file spec><CR> <ETX> <CHKSUM>
  166.          -------------------------------------------->
  167.          Note: U/D=direction; A/B=ASCII or binary; file
  168.          spec=standard CP/M  "." ACK (Received; OK)
  169.      [  <------------------------------------------- ]
  170.                          "/" NAK (Retransmit)
  171.      [  <-------------------------------------------- ]
  172.  
  173.  
  174.  
  175.      Action: The terminal sets up to read or write the file given in <file spec>.  Transfer will occur either until end-of-file <B> or, if <A> (ASCII) is being used, until the first CTRL-Z.  The file will be downloaded (transferred from host to terminal) or uploaded (transferred from terminal to host) depends on the contents of the dir